home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Debug / DebugTimer.h < prev    next >
Text File  |  1997-06-28  |  239b  |  23 lines

  1. // DebugTimer.h
  2.  
  3. #ifndef DebugTimer_h
  4. #define DebugTimer_h
  5.  
  6. #ifndef Integers_h
  7. #include "Integers.h"
  8. #endif
  9.  
  10. class DebugTimer
  11.   {
  12.     private:
  13.         uint32 start;
  14.     
  15.         static uint32 Now();
  16.         
  17.     public:
  18.         DebugTimer();
  19.         ~DebugTimer();
  20.   };
  21.  
  22. #endif
  23.